home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mmdf / mmdf-IIb.43 / src / shellfiles / prune.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1986-02-01  |  269 b   |  19 lines

  1. #! /bin/sh
  2. #
  3. #  Prune - Go through all the messages in the queue and
  4. #          delete all the deadwood entries.
  5. #
  6. PATH=/usr/brl/bin:/usr/ucb:/bin:/usr/bin
  7. export PATH
  8.  
  9. cd /usr/mmdf/lock/home/addr
  10. for i in msg.*
  11. do
  12. flock $i ed $i << DONE
  13. 3,\$g/^. \* /d
  14. f
  15. w
  16. q
  17. DONE
  18. done
  19.